postids = ["210", "214", "219", "222", "225", "226", "230", "231", "233", "234", "241", "244", "249", "257", "260", "265", "266", "268", "279", "281", "284", "285", "286", "288", "291", "294", "304", "305", "307", "311", "312", "318", "320", "326", "327", "330", "331", "332", "333", "335", "337", "338", "339", "340", "343", "347", "348", "350", "351", "354", "355", "356", "357", "359", ""]; counts = ["1", "1", "2", "1", "3", "6", "2", "1", "1", "1", "1", "1", "1", "1", "2", "1", "2", "1", "2", "2", "1", "6", "4", "1", "2", "1", "2", "2", "2", "2", "1", "1", "1", "2", "2", "1", "1", "1", "2", "1", "2", "7", "5", "1", "1", "1", "2", "5", "4", "1", "1", "2", "2", "1", ""]; start = 0; end = 54; function commentCounter (postid) { for (i = start; i < end; i++) { if (postids[i] == postid) { document.write (counts[i]); return } } document.write ("0"); return }